This example is for Wiring version 0027+. If you have a previous version, use the examples included with your software. If you see any errors or have comments, please let us know.
ACS712 Low current sensor (sparkfun breakout) by BARRAGAN
Reads values from a ACS712 current sensor connected to the analog input pin 0. The value read from the sensor is proportional to current measured on the sensing terminals. The value read is printed to the serial monitor
int sensorValue;
void setup()
{
Serial.begin(9600); // sets the serial port to 9600
}
void loop()
{
sensorValue = analogRead(0); // read analog input pin 0
Serial.print(sensorValue, DEC); // prints the value read
Serial.print(" "); // prints a space between the numbers
delay(100); // wait 100ms for next reading
}